home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 22
/
freelog 22.iso
/
Prog
/
Djgpp
/
GPC2952B.ZIP
/
doc
/
gpc
/
docdemos
/
commandlineargumentsdemo.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-02-09
|
299 b
|
12 lines
program CommandLineArgumentsDemo (Output);
var
Counter : Integer;
begin
WriteLn ('This program displays command line arguments one per line.');
for Counter := 0 to ParamCount do
WriteLn ('Command line argument #', Counter, ' is `',
ParamStr (Counter), '''')
end.